home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _7BF2CBA6DD3B44C1878B2EE04FEAA547 < prev    next >
Encoding:
Text File  |  2006-08-04  |  803 b   |  32 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Tiles():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 315, 
  16.         'BorderSize': 2, 
  17.         'Color': (167,167,167), 
  18.         'Depth': 8, 
  19.         'Elevation': 30, 
  20.         'Intensity': 50, 
  21.         'Shininess': 50, 
  22.         'Smoothness': 20, 
  23.         'TileAngularity': 100, 
  24.         'TileShape': App.Constants.TileShape.Hexagon, 
  25.         'TileSize': 24
  26.         }
  27.  
  28. def Do(Environment):
  29.     # Tiles
  30.     App.Do( Environment, 'Tiles',         Preset_Tiles())
  31.  
  32.